Skip to content

프로젝트 폴더 구조

J219_홍종우 edited this page Nov 2, 2021 · 3 revisions

FE

├── public                    //정적 파일들을 모아놓는 곳
│   ├── favicon.ico
│   └── index.html
├── src
│   ├── assests               // image 파일
│   ├── components            // component들을 모아놓은 폴더
│   ├── pages                 // component를 조합해 하나의 페이지를 구성
│   ├── stores                // 전역상태관리
│   ├── styledComponents      // 전역 스타일, scss 파일
│   ├── utils                 // 자주 쓰는 함수
│   ├── App.tsx               // App
│   └── index.tsx             // 메인 진입점

BE

Clone this wiki locally